/* Header */
.header {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%);
}

.header-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  font-weight: 800;
  color: white;
  text-transform: uppercase;
  text-shadow: 0px 4px 12px rgba(0,0,0,.35);
}
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

body {
  background-color: #fff;
  color: #333;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 26, 113, 0.65);
}

/* Business Content Layout */
.business-section {
    padding: 50px 20px;
    background: #ffffff;
}
.business-section .content {
    max-width: 900px;
    margin: auto;
    margin-bottom: 40px;
}
.business-section h2 {
    color: #003366;
    font-weight: bold;
    margin-bottom: 15px;
}
.business-section ul {
    margin-left: 20px;
}

/* Process Section */
.methodology-process {
    background: #f7faff;
    padding: 60px 20px;
}
.section-title {
    text-align: center;
    font-size: 32px;
    color: #003366;
    font-weight: 700;
    margin-bottom: 40px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}
.process-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}
.process-card i {
    font-size: 36px;
    color: #00509E;
    margin-bottom: 8px;
}
.process-card h4 {
    color: #003366;
    font-weight: 700;
    margin-bottom: 10px;
}

/* CTA */
.cta-section {
    background: #003366;
    text-align: center;
    padding: 60px 30px;
    color: #fff;
}
.cta-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background: #fff;
    color: #003366;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}
.cta-btn:hover {
    background: #66a6ff;
    color: white;
}

/* ANIMATION */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .business-section {
    padding: 40px 15px;
  }
}
